home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 40
/
Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso
/
Aminet
/
util
/
cdity
/
ModeProSrc.lha
/
Docs
/
SysReport.rx
< prev
next >
Wrap
Text File
|
1998-09-14
|
1KB
|
78 lines
/* */
if ~show("l","rexxsupport.library") then do
if addlib("rexxsupport.library",0,-30,0) then
say
else
exit 10
end
sep=copies("=",75)
say "ModePro System Scanner"
say( "System Version")
say( sep)
address command "version"
say
open(1,"t:tasks","w")
writeln(1,showlist(w,,d2c(10)))
close(1)
address command "sort t:tasks t:tasks.2"
open(1,"t:libs","w")
writeln(1,showlist(l,,d2c(10)))
close(1)
address command "sort t:libs t:libs.2"
say( "Tasks")
say( sep)
open(1,"t:tasks.2","r")
do until eof(1)
line=readln(1)
say( line)
end
close(1)
say( "CLI Processes")
say(sep)
address command "status full"
say( " ")
say( "Libraries")
say( sep)
open(1,"t:libs.2","r")
do until eof(1)
line=readln(1)
say( line)
end
close(1)
say
say( "WBStartup Drawer")
say( sep)
dir=showdir("sys:wbstartup",,d2c(10))
say(dir)
say
say( "s:startup-sequence")
say( sep)
address command "type s:startup-sequence number"
say
say( "s:user-startup")
say( sep)
address command "type s:user-startup number"
say
say
say "*****************************************************"
say "*** Don't forget to include any Enforcer reports! ***"